Because visualization of partially transparent nodes relies on having proper data behind them, in order to solve the blending equations properly, you have to render the partially transparent nodes from back to front.
When not rendered in a correct way, the partially transparent nodes can waste a lot of resources. If a partially transparent node is drawn before the underlying opaque node, the partially transparent node has to be drawn again after the opaque node. This means that because of the overdraw, those pixels are drawn three times. This is always the case when the nodes are presented in a front-to-back order.
For these reasons always render all the partially transparent nodes after rendering the rest of the scene.
You can define the rendering order of nodes using one or more render pass and filter. See Rendering and Filters.
To render partially transparent 3D nodes in the correct order, select the nodes in the Project and in the next to the Tags property click the Tags button and select Transparent.
Kanzi Studio DefaultRenderPass first renders the nodes that do not have the Transparent tag and then the nodes that do have the Transparent tag.
You can control how Kanzi renders a Viewport 2D node with the Foreground Hint property:
Optimizing the rendering of layouts
Configuring nodes for efficient rendering
Preventing overdraw with the Sorting Filter